HTMLify
app.js
Views: 14 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 | const password = document.getElementById("password"); const bg = document.querySelector(".background-image"); password.addEventListener("input", (e) => { const input = e.target.value; const length = input.length; const blurness = 20 - length * 2; bg.style.filter = `blur(${blurness}px)`; }); |